home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
MacHack 2000
/
MacHack 2000.toast
/
pc
/
The Hacks
/
Softshoe
/
Lisa's Mac Parts
/
Commands
/
Protocols
/
Creating.h
< prev
next >
Wrap
Text File
|
2000-06-23
|
194b
|
17 lines
// Creating.h
#ifndef Creating_h
#define Creating_h
class Creating
{
protected:
~Creating() {}
public:
virtual bool CanCreate() const = 0;
virtual void Create() = 0;
};
#endif